- Save and execute code
- Flexible compartmentalized work flow
- Document your work
- Lab book for your code
- Turn your analyses into documents
- Self contained replication friendly output
- Use multiple languages (R, Python, SQL) in a single .rmd
20/01/2021
install.packages('rmarkdown')
# Render the default (first) format defined in the file
render("input.Rmd")
# Render multiple formats
render("input.Rmd", c("html_document", "pdf_document"))
plot(pressure)
Checkbox
Code
LEC <- leaflet() %>%
addProviderTiles("Stamen.Watercolor") %>%
addMarkers(lng=-2.7869553637288207, lat=54.009157481709096, popup="Lancaster Environment Centre")